home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / MacMarlais 0.5.3 / Information / README < prev   
Encoding:
Text File  |  1994-09-18  |  2.0 KB  |  65 lines  |  [TEXT/Mrls]

  1. Marlais is a simple-minded interpreter for a programming language
  2. strongly resembling Dylan [1].  It is not intended as a final release,
  3. but rather to fill a perceived void where Dylan implementations are
  4. concerned.  This is a "hackers release" and is intended as a vehicle
  5. for education, experimentation and also to encourage people to port it
  6. to different architectures, add features, and fix bugs.  Marlais is
  7. alpha software and should not be used by people desiring
  8. reliability!!!
  9.  
  10. ***NOTE***
  11. The interpreter will read, evaluate, and print a sequence of semicolon
  12. terminated Dylan expressions.
  13.  
  14. The normal interpreter prompt is the symbol `?'.
  15. If an incomplete expression has been entered, the interpreter prints
  16. a continuation prompt `>'.
  17.  
  18. If you type a non-semicolon terminated expression at the interpreter,
  19. you will see the continuation prompt.  This is your cue to finish up
  20. with a semicolon.  Here's an example:
  21.  
  22.     ? 1 + 3
  23.     > ;
  24.     4
  25. ***
  26.  
  27. See ARGUMENTS for the Marlais command-line arguments.
  28.  
  29. See INSTALL for information on installing Marlais.
  30.  
  31. See MACHINES for a list of supported machines.
  32.  
  33. See PORTING for information on porting Marlais to another
  34. architecture. 
  35.  
  36. See BUGS for information on how to report bugs.
  37.  
  38. See DIFFERENCES for information on some of the differences between
  39. Marlais and Dylan.
  40.  
  41. See HACKING for information on adding to and fixing Marlais.
  42.  
  43. See ADDED for information on new features in this release.
  44.  
  45. ---
  46. Further Dylan information is available from the following places
  47. On the Internet:
  48.  ftp://ftp.cambridge.apple.com:/pub/dylan/
  49.  http://www.cambridge.apple.com
  50.  
  51. On Applelink, click on:
  52. Developer Support:Developer Services:
  53.    Development Platforms:Dylan Related
  54.  
  55. On eWorld, from Town Square, click on:
  56.   Computer Center:Apple Customer Center:Apple Developer Services:
  57.     Tool Chest:Development Platforms:Dylan Related
  58.  
  59. On CompuServe, Type GO APPLE to get to the Apple support forum.
  60. There are 16 libraries, go into Programmers/Developers Library #15
  61. ---
  62. [1] Andrew Shalit.  "Dylan: an object oriented dynamic language".
  63. Apple Computer, Inc.  1992.
  64.  
  65.